home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- cursor(-1)
- set the keyDownScript to "printPass"
- set the keyUpScript to "numsOnly"
- put " " into field "A1"
- set the textStyle of field "A1" to "bold"
- set the textSize of field "A1" to 24
- end
-
- on numsOnly
- if (the key = RETURN) or (the key = ENTER) or (the key = TAB) or (the key = "-") or (the keyCode = 76) then
- exit
- end if
- if (the key >= "0") and (the key <= "9") then
- exit
- end if
- if the key = "." then
- exit
- end if
- if the key = BACKSPACE then
- exit
- end if
- dontPassEvent()
- end
-